To run tests on our install, we will want to use a "working directory" (wd). Nothing fancy, just a directory on our
computer. However, there is one gotcha noted here:
Make sure you have "package.json" in the directory along with your js file when you run node (you can use the "package.json" in the ZIP that is provided in the previous step -- it is a minimal package file that will suffice when just running basic js).
We'll learn more about this package file later when we start doing node projects.
package.json
Gotcha
Commands are picky. We want this:
node install-check.js
And want to watch out for typos (extra space in first, extra "@" in second):